home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 4: GNU Archives / Linux Cubed Series 4 - GNU Archives.iso / gnu / glibc-1.09 / glibc-1 / glibc-1.09.1 / sysdeps / unix / sysv / sysv4 / solaris2 / sparc / sysdep.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-09-29  |  1.6 KB  |  49 lines

  1. /* Copyright (C) 1993, 1994 Free Software Foundation, Inc.
  2.    Contributed by Brendan Kehoe (brendan@zen.org).
  3.  
  4. The GNU C Library is free software; you can redistribute it and/or
  5. modify it under the terms of the GNU Library General Public License as
  6. published by the Free Software Foundation; either version 2 of the
  7. License, or (at your option) any later version.
  8.  
  9. The GNU C Library is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  12. Library General Public License for more details.
  13.  
  14. You should have received a copy of the GNU Library General Public
  15. License along with the GNU C Library; see the file COPYING.LIB.  If
  16. not, write to the Free Software Foundation, Inc., 675 Mass Ave,
  17. Cambridge, MA 02139, USA.  */
  18.  
  19. /* Solaris 2 does not precede the asm names of C symbols with a `_'. */
  20. #define    NO_UNDERSCORES
  21.  
  22. #include <sysdeps/unix/sysdep.h>
  23.  
  24. /* As of gcc-2.6.0, it complains about pound signs in front of things
  25.    that aren't arguments to the macro.  So we use this to pull it off
  26.    instead.  */
  27. #define cat(a,b) a##b
  28. #define poundfnc cat(#,function)
  29.  
  30. #define    ENTRY(name)                                  \
  31.   .section ".text";                                  \
  32.   .align 4;                                      \
  33.   .global C_SYMBOL_NAME(name);                              \
  34.   .type  C_SYMBOL_NAME(name), poundfnc;                          \
  35.   C_LABEL(name)
  36.  
  37. #define    PSEUDO(name, syscall_name, args)                      \
  38.   ENTRY (name)                                      \
  39.   mov SYS_ify(syscall_name), %g1;                             \
  40.   ta 8;                                          \
  41.   bcs C_SYMBOL_NAME(syscall_error);                          \
  42.   nop
  43.  
  44. #define    ret        retl; nop
  45. #define    r0        %o0
  46. #define    r1        %o1
  47. #define    MOVE(x,y)    mov x, y
  48.  
  49.